home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / earthlink / nscomm / java40.jar / java / io / FileReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  522 b   |  16 lines

  1. package java.io;
  2.  
  3. public class FileReader extends InputStreamReader {
  4.    public FileReader(String var1) throws FileNotFoundException {
  5.       super(new FileInputStream(var1));
  6.    }
  7.  
  8.    public FileReader(File var1) throws FileNotFoundException {
  9.       super(new FileInputStream(var1));
  10.    }
  11.  
  12.    public FileReader(FileDescriptor var1) {
  13.       super(new FileInputStream(var1));
  14.    }
  15. }
  16.